home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / wpj1_8.zip / FDIAG.ZIP / FDIAGVW.H < prev    next >
C/C++ Source or Header  |  1993-08-12  |  964b  |  42 lines

  1. // fdiagvw.h : interface of the CFdiagView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CFdiagView : public CView
  6. {
  7. protected: // create from serialization only
  8.     CFdiagView();
  9.     DECLARE_DYNCREATE(CFdiagView)
  10.  
  11. // Attributes
  12. public:
  13.     CFdiagDoc* GetDocument();
  14.  
  15. // Operations
  16. public:
  17.  
  18. // Implementation
  19. public:
  20.     virtual ~CFdiagView();
  21.     virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  22. #ifdef _DEBUG
  23.     virtual void AssertValid() const;
  24.     virtual void Dump(CDumpContext& dc) const;
  25. #endif
  26.  
  27.  
  28. // Generated message map functions
  29. protected:
  30.     //{{AFX_MSG(CFdiagView)
  31.     afx_msg void OnFileOpenwithnewfiledialogbox();
  32.     //}}AFX_MSG
  33.     DECLARE_MESSAGE_MAP()
  34. };
  35.  
  36. #ifndef _DEBUG    // debug version in fdiagvw.cpp
  37. inline CFdiagDoc* CFdiagView::GetDocument()
  38.    { return (CFdiagDoc*) m_pDocument; }
  39. #endif
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42.